#include "..\CookHeader.h"

int SIZE = 5;
Array <string> queue = { "ȭ", "ֶ", "", "", "" };
int front = -1, rear = 4;

bool isQueueFull() {
	if (rear == SIZE - 1)
		return true;
	else
		return false;
}

int main() {
	print("ť  á -->");
	println((isQueueFull() ? "true" : "false"));  // 0:false, 1:true
}